feat(tracker): spawn sessions from eligible issues#424
Closed
anirudh5harma wants to merge 2 commits into
Closed
Conversation
This was referenced Jun 27, 2026
Author
|
Ported to AgentWrapper/agent-orchestrator#2288, which closes AgentWrapper/agent-orchestrator#2282. The destination port excludes unrelated frontend build and formatter changes. Closing this legacy PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ReverbCode can now turn an explicitly eligible tracker issue into exactly one worker session for a registered project. This completes the first issue-intake slice from #422 while keeping the tracker read-only: the daemon polls configured projects, applies label/assignee eligibility, stores the canonical issue id on the session, and lets the existing session/PR/lifecycle machinery take over.
The intake loop is defensive by default. Existing projects are unaffected unless they opt in, duplicate sessions are skipped across daemon restarts, provider/spawn failures back off instead of blocking the daemon, and oversized issue bodies are truncated so the generated worker prompt stays within the session prompt limit.
This also wires the project config through the API/client schema and CLI config path so the feature has one durable configuration surface instead of frontend-only behavior.
Closes #422.
Scope Notes
issueId; richer dashboard controls and visual affordances are left for follow-up work.npm run buildpath package the daemon and Electron app successfully.Validation
npm run lintcd backend && go test -race ./...cd backend && go vet ./...npm run frontend:typechecknpm --prefix frontend test -- --runnpm --prefix frontend run build